* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ff5722;
    --primary-dark: #e55e00;
    --secondary: #ff9800;
    --dark: #222;
    --light: #f9f9f9;
    --gray: #777;
    --light-gray: #eee;
    --card-bg: #fffaf5;
    --bg-color: #e9f2ff;
    --card-bg: #ffffff;
    --icon-bg: #fff5cc;
    --text-color-dark: #212e40;
    --text-color-medium: #2f2f2f;
    --card-shadow: rgba(100, 100, 111, 0.2);
    --border-radius: 12px;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: #ffffff;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo span {
    color: #ff5722;
    font-weight: 800;
    font-size: 28px;
    margin-left: 10px;
}

.logo a {
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #ff5722;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5722;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: #ff5722;
    font-weight: 600;
    padding-bottom: 5px;
}

.download-btn {
    background-color: #ff5722;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8F7 0%, #F0F9FF 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}


.hero p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;


}

.hero-dots {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-dark) 2px, transparent 3px);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: 0;
}

.hero-dots-1 {
    top: 10%;
    right: 10%;
}

.hero-dots-2 {
    bottom: 10%;
    left: 10%;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 90, 48, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 48, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trusted By */
.trusted-bar {
    background: white;
    padding: 40px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);

}

.trusted-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trusted-list p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

.trusted-logos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logos img {
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Why Rapido */
.why-rapido {
    background: white;
}

.why-rapido h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.why-rapido h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
    text-align: center;

}

.why-rapido p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light-gray);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--gray);
    font-size: 1rem;
}

/* Targeting */
.targeting {
    background: var(--light);
    margin-top: 60px;
    border-radius: 20px;
    padding-bottom: 30px;

}

.targeting h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-top: 30px;
}

.targeting h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
}

.targeting p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 40px;
}

.targeting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card img {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/*Advertising Categories */
.Advertising {
    background-color: var(--bg-color);
    border-top-left-radius: 25%;
    border-top-right-radius: 25%;
    margin-top: 60px;


}

.container1 {
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0 20px;


}

.Advertising h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
    padding-top: 30px;
}

.Advertising h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
}

.Advertising p {
    color: var(--text-color-medium);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px 36px;
}

.card1 {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px 24px 24px 24px;
    box-shadow: 0 6px 10px var(--card-shadow);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.3s ease;
}

.card1:hover {
    box-shadow: 0 10px 20px rgba(100, 100, 111, 0.3);
}

.icon-wrapper {
    min-width: 56px;
    min-height: 56px;
    background-color: var(--icon-bg);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.05);
}

.icon-wrapper img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.icon {
    width: 28px;
    height: 28px;
    fill: #346699;
}

.card-text {
    flex: 1;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-color-dark);
}

.card-desc {
    font-weight: 400;
    font-size: 0.2rem;
    line-height: 1.4;
    font-family: Calibri;
    color: var(--text-color-medium);
}

/* Ad Formats */
.ad-formats {
    padding: 80px 0;
}

.ad-formats h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.ad-formats h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
}

.ad-formats p {
    color: var(--gray);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

.ad-format-list {
    margin-top: 60px;
}

.adformat-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.adformat-img {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.adformat-img:hover {
    transform: scale(1.03);
}

.adformat-img img {
    width: 100%;
    height: auto;
    display: block;
}

.adformat-desc {
    flex: 1;
}

.adformat-desc h4 {
    font-size: 1.5rem;
    color: var(--primary);

}

.adformat-desc p {
    font-size: 1.1rem;
}


/* Campaigns section*/
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}


.container3 {
    max-width: 1500px;
    max-height: 750px;
    margin: 0 auto;
    padding: 10px 16px 96px;
    background-color: var(--bg-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

h1.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    text-align: center;
    margin-top: 20px;
    color: #1f2937;
}

h1.section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto;
}

p.section-subtitle {
    text-align: center;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 48px;
    color: #374151;
}

.cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card2 {
    background-color: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    width: 320px;
    padding: 1rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card2:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 160px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    pointer-events: none;
}

.card-image img {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-title1 {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
}

.card-description {
    font-weight: 400;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 14px;
    z-index: 2;
    position: relative;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.tag {
    background-color: #f3f4f6;
    color: #1f2937;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    user-select: none;
    cursor: default;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    transition: background-color 0.3s ease;
}

.tag:hover {
    background-color: #e0e7ff;
}


.btn-secondary-outline {
    display: block;
    max-width: 200px;
    margin: 0 auto 96px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: #111827;
    background-color: transparent;
    border: 2px solid #111827;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    user-select: none;
    text-decoration: none;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
    background-color: var(--primary);
    color: #f9fafb;
    border-color: #111827;
    outline: none;
}


/* Signup Form */
.signup {
    background: #112b57;
    color: #ffffff;
    padding: 80px 0;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;

}


p.subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: center;
    opacity: 0.9;
}

form {
    max-width: 560px;
    margin: 0 auto;
}

.input-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.input-single {
    margin-bottom: 1.15rem;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    background: transparent;
    border: 2px solid #d8def3;
    border-radius: 34px;
    padding: 0.8rem 1.6rem;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    outline-offset: 2px;
    transition: border-color 0.3s ease;
}

input::placeholder {
    color: #d8def3;
    font-weight: 600;
}

input:focus {
    border-color: var(--primary);
    outline: none;
}

button {
    width: 100%;
    background: var(--primary);
    color: #112b57;
    border: none;
    border-radius: 34px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover,
button:focus {
    background: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(230, 108, 27, 0.75);
    outline: none;
}

.terms {
    margin-top: 1rem;
    font-size: 0.65rem;
    color: #cfd4dd;
    user-select: none;
    text-align: center;
}

.terms a {
    color: #cfd4dd;
    font-weight: 600;
    text-decoration: none;
}

.terms a:hover,
.terms a:focus {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #222;
    color: #eee;
    padding: 80px 40px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h3 {
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #444;
    color: #777;
    font-size: 15px;
}